*{
	margin: 0; 
	padding: 0;
	font-family: 'Poppins', sans-serif;

}
.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/photo.jpg");
	background-position: center;
	background-size: cover;
	position: relative;
	background-blend-mode: darken;
}

nav{
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 30%;
	border: 3px solid black;
	border-radius: 70%;

}
.navlink{
	flex: 1;
	text-align: right;
}
.navlink ul li{
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}
.navlink ul li a{
	color: white;
	text-decoration: none;
	font-size: 14px;
}
.navlink ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background-color: brown;
	display: block;
	margin:auto ;
}
.navlink ul li:hover::after{
	width: 100%; 
	transition: 0.4s;
}
#search{
	padding: 5px;
	font-size: 8px;
	border: 2px solid darkgrey;
	border-radius: 5px;
}
.search_btn{
	padding: 3px;
	border: 2px solid darkgrey;
	border-radius: 8px; 
	background: none;
	color: white;
	cursor: pointer;
	font-size: 10px;

}

.textbox{
	width: 90%;
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%) ; /*to place it in center of the div*/
	text-align: center;
}
.textbox h1{
	font-size: 40px;
	font-weight: bolder;
}
.textbox p{
	margin: 10px 0 40px;
	font-size: 20px;
	font-family:cursive;
}
.btn{
	display: inline-block;
	text-decoration: none;
	color: white;
	font-weight: bolder;
	border: 3px solid whitesmoke;
	padding: 12px 30px;
	font-size: 14px;
	background: transparent;
	position: relative;

}
.btn:hover{
	border: 3px solid black;
	background: #f44336;
	transition: 0.8s;
}
nav .fa{
	display: none;		/*hide the icons in big screen*/
}
/*--------media query for navigation bar ------*/

@media(max-width: 925px){
	.textbox h1{
		font-size: 30px;
	}
	.navlink ul li{
		display: block;
	}
	.navlink ul li a{
		color: black;
		font-size: 15px;
		font-family:'Poppins', sans-serif;
		font-weight: bold;
	}
	.navlink{
		position: fixed;
		background: rosybrown;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1.5s;
	}
	nav .fa{
		display: block;
		color: black;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.navlink ul{
		padding: 30px;
	}
}
/*--------- css for Introduction section --------*/

.intro{
	width: 90%;
	margin: 20px auto;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 40px;
	padding-bottom: 20px;
	background-color: mistyrose;
}
.intro_col{
	flex-basis: 48%;
	padding: 20px 2px;
}
.intro_col img{
	width: 80%;
	margin: 5% auto;
	border: 3px solid black;
	border-radius: 10px;
}


/*--------- css for course section --------*/
.course{
	width: 90%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}
h1{
	font-size: 34px;
	font-weight: 600px;
}
p{
	font-size: 15px;
	font-weight: 300;
	line-height: 22px;
	padding:10px ;
}
.row{
	margin-top: 7px;
	display: flex;
	justify-content: space-between;
}
.course_col{
	flex-basis: 24%;
	background-color: mistyrose;
	border-radius: 10px;
	margin-bottom: 7%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.7s;
}

.course_col:hover{
	box-shadow: 0 0 20px 0px black;
	background-color: lightpink;
}
h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.course_img{
	width: 100%;
	border: 2px solid black;
	border-radius: 10px;

}

/*------media query for course and success section ------*/

@media (max-width:  925px){
	.row{
		flex-direction: column;
	}
}

/*------------- css for  facility class ---------*/
.facility{
	margin: auto;
	text-align: center;
	width: 100%;
	padding-top: 10%;
	height: 250px;
	background-image: url('../image/photo1.jpg');
	background-position: center;
	background-size: cover;
	/*position: relative;*/
	background-blend-mode: darken;
	margin-bottom: 5%;

}
.text_facility p{
	padding-top: 3%;
	font-weight: bold;
	font-size: 16px;
}

/*--------- css for success section --------*/

.success{
	background-color: mistyrose;
	width: 100%;
	margin: auto;
	text-align: center;
	padding-top: 50px;
}

.success_col{
	margin-bottom: 3%;
	margin-left: 5px;
	margin-right: 5px;
	padding: 20px 12px;
}
.success_col:hover{
	box-shadow: 0 0 20px 0px black;
	background-color: lightpink;
	box-sizing: border-box;
	transition: 0.7s;

}

.success_img{
	width: 25%;
	border: 2px solid black;
	border-radius: 50%;
}

/*------- css for testimonials section --------*/

.testimonials{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top:60px ;
}

.testimonials_cols{
	flex-basis: 40%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
	background-color: lightpink;
	padding: 25px;
	cursor: pointer;
	display: flex;
}
.testimonials_cols img{
	height: 45px;
	margin-left: 5px;
	border: 2px solid black;
	margin-right: 30px;
	border-radius: 50%;
}
.testimonials_cols p{
	padding: 0;
}
.testimonials_cols h3{
	margin-top: 15px;
	text-align: left;
}
.testimonials_cols .fa{
	color: brown;
}


/*------media query for testimonials section ------*/

@media(max-width:  925px){
	.testimonials_cols img{
		margin-left: 0px;
		margin-right: 10px;
	}
}

/*-------- css for call  to action section --------*/

.call{
	margin: 50px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../image/photo2.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
	background-blend-mode: 500;

}
.call h1{
	color: white;
	margin-bottom: 40px;
	padding: 0;
}

.btn_call{
	display: inline-block;
	text-decoration: none;
	color: white;
	font-weight: bolder;
	border: 3px solid white;
	padding: 12px 30px;
	font-size: 14px;
	background: transparent;
	position: relative;

}
.btn_call:hover{
	border: 3px solid white;
	background: lightgrey;
	color: black;
	transition: 0.8s;
}


/*------media query for call to action  section ------*/

@media(max-width:  925px){
	.call h1{
		font-size: 24px;
	}
}

 /*------- Css for footer --------*/

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
	background-color: #C0C0C0;
	margin-top: 80px;
}
.footer h4{
    font-weight: 600px;
    padding: 10px;
    margin: 5px;
    font-size: 17px;
}
.icons .fa{
	color: red;
	margin: 0 10px;
	cursor: pointer;
	padding: 12px 0;

}
.fa-heart-o{
	color: red;
}

/*------------------------ CSS FOR ABOUT PAGE OF WEBSITE ---------------------------*/

.subheader{
	height:50vh;
	width: 100%;
	background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../image/photo4.jpg") ;
	background-position: center;
	background-size: cover;
	text-align: center;
	color: white;
}
.subheader h1{
	/*margin-top: 50px;*/
	font-size: 50px;
}
.subheader h3{
	font-size: 30px;
}

/*------- Css for About us content  --------*/
.aboutus{
	width: 90%;
	margin: 20px auto;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 40px;
	padding-bottom: 20px;
	background-color: mistyrose;

}
.about_col{
	flex-basis: 48%;
	padding: 30px 2px;
}
.about_col img{
	width: 100%;
	margin-top: 15%;
	border: 3px solid black;
	border-radius: 10px;
}
.about_col h1{
	padding-top: 0;
}
.about_col p{
	padding: 15px 0 25px;
}
.about_btn{
	color: black;
	background-color:lightpink;
	border: 2px solid black;	
}
.about_btn:hover{
	border: 2px solid black;
	color: white;
	background-color: brown;
}

/*---------- CSS FOR CONTACT US PAGE -----------*/

.location{
	width: 80%;
	margin: auto;
	padding: 80px 0;
}
.location iframe{
	width: 100%;
}

.contact_us{
	width: 80%;
	margin: auto;

}
.contact_col{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.contact_col div{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.contact_col div .fa{
	font-size: 28px;
	color: red;
	margin: 10px;
	margin-right: 30px;
}

.contact_col div p{
	padding: 0;

}
.contact_col div h5{
	font-size: 20px;
	margin-bottom: 5px;
	color:#555 ;
	font-weight: 400;
}

.contact_col input, .contact_col textarea{
	width: 100%;
	padding: 8px;
	margin-bottom: 10px;
	border: 1px solid lightgrey;
	box-sizing: border-box;

}
.btn{
	color: black;
	border: 2px solid black;
	font-size: 17px;
	padding: 5px;
	background-color: mistyrose;
}
.btn:hover{
	background-color: lightpink;
}

/*------------ gallery page --------*/
.container{
	width: 80%;
	margin-top: 40px;
	background-color: mistyrose;
	padding: 10px;

}
.container img{
  	/*padding: 10px;*/
  	width: 30%;
  	border: 3px solid brown;
	border-radius: 20px;
}
.container img:hover{
	filter: brightness(80%);
}
